home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1994 February: Tool Chest / Dev.CD Feb 94.toast / Tool Chest / Development Platforms / MCL Related / User Contributions / Conquest 1.1.sea / Conquest 1.1 / CODE / Control / @load.lisp / @load.lisp
Encoding:
Text File  |  1993-02-14  |  881 b   |  28 lines  |  [TEXT/CCL2]

  1. ;;; @load.lisp
  2. ;;;
  3. ;;; CONQUEST AI PROJECT
  4. ;;;
  5. ;;; Washington University Computer Science Department
  6. ;;; Copyright 1992 Paul McCartney.  All Rights Reserved.
  7. ;;;
  8. ;;; AUTHOR:  Paul McCartney
  9. ;;;
  10. ;;; DESCRIPTION:
  11. ;;;
  12. ;;; Load the control files that Conquest uses.  Control is higher level
  13. ;;; functionality which "glues" everything together at the top level.
  14. ;;;
  15. ;;; USE:
  16. ;;;
  17. ;;; Load this file.
  18. ;;;
  19.  
  20. (load-fasl "Control;menus.lisp" "FASL;Control:")
  21. (load-fasl "Control;initialize-conquest.lisp" "FASL;Control:")
  22. (load-fasl "Control;basic-player.lisp" "FASL;Control:")
  23. (load-fasl "Control;conquest-data-structures.lisp" "FASL;Control:")
  24. (load-fasl "Control;human-player.lisp" "FASL;Control:")
  25. (load-fasl "Control;conquest-control.lisp" "FASL;Control:")
  26. (load-fasl "Control;conquest-primitives-1.lisp" "FASL;Control:")
  27. (load-fasl "Control;conquest-primitives-2.lisp" "FASL;Control:")
  28.